logical one or zero - traducción al árabe
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:     

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

logical one or zero - traducción al árabe

SOFTWARE DESIGN RULE
Zero, one, infinity; Zero one infinity; 01∞; Zero One Infinity; Zero one infinity principle; ZOI rule; Zero, one, or infinity; 0, 1, or ∞

logical one or zero      
صفر أو واحد منطقي
DISJUNCTION         
  • OR [[logic gate]]
  • Venn diagram of <math>\scriptstyle A \lor B \lor C</math>
LOGICAL CONNECTIVE OR
Disjunction; Logical or; Or (logic); Disjunction (logic); Inclusive or; Logical OR; Inclusive disjunction; ⋁; Nonexclusive disjunction; Non-exclusive disjunction; Or symbol; ⋎; ⟇; ⟏; Boolean OR; Logical sum; Or operator; Parallel OR; Parallel or; Inclusive OR; Inclusive-or; Inclusive-OR; OR (logic)

ألاسم

اِقْتِلاع ; اِنْخِلاع ; تَخْلِيع ; تَفْكِيك ; فِكَاك

disjunction         
  • OR [[logic gate]]
  • Venn diagram of <math>\scriptstyle A \lor B \lor C</math>
LOGICAL CONNECTIVE OR
Disjunction; Logical or; Or (logic); Disjunction (logic); Inclusive or; Logical OR; Inclusive disjunction; ⋁; Nonexclusive disjunction; Non-exclusive disjunction; Or symbol; ⋎; ⟇; ⟏; Boolean OR; Logical sum; Or operator; Parallel OR; Parallel or; Inclusive OR; Inclusive-or; Inclusive-OR; OR (logic)
‎ انْفِصال‎

Definición

disjunction
n.
Separation, disconnection, disassociation, disunion, isolation, severance, parting.

Wikipedia

Zero one infinity rule

The Zero one infinity (ZOI) rule is a rule of thumb in software design proposed by early computing pioneer Willem van der Poel. It argues that arbitrary limits on the number of instances of a particular type of data or structure should not be allowed. Instead, an entity should either be forbidden entirely, only one should be allowed, or any number of them should be allowed. Although various factors outside that particular software could limit this number in practice, it should not be the software itself that puts a hard limit on the number of instances of the entity.

Examples of this rule may be found in the structure of many file systems' directories (also known as folders):

  • 0 – The topmost directory has zero parent directories; that is, there is no directory that contains the topmost directory.
  • 1 – Each subdirectory has exactly one parent directory (not including shortcuts to the directory's location; while such files may have similar icons to the icons of the destination directories, they are not directories at all).
  • Infinity – Each directory, whether the topmost directory or any of its subdirectories, according to the file system's rules, may contain any number of files or subdirectories. Practical limits to this number are caused by other factors, such as space available on storage media and how well the computer's operating system is maintained.

In real-world software design, violations of this rule of thumb are common. For example, the FAT16 file system imposes a limit of 65,536 files to a directory.